From: Thomas Lange Date: Sat, 1 Jan 2022 17:23:22 +0000 (+0000) Subject: texture: Fix typo in error message X-Git-Tag: archive/raspbian/4.6.5+ds-1+rpi1~1^2~61^2^2~132^2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=8767ffde2facee1eb1a8d946cd970f0ee3eb8542;p=gtk4.git texture: Fix typo in error message --- diff --git a/gdk/gdktexture.c b/gdk/gdktexture.c index 51663a7eec..2cf33fda5c 100644 --- a/gdk/gdktexture.c +++ b/gdk/gdktexture.c @@ -454,7 +454,7 @@ gdk_texture_new_from_resource (const char *resource_path) texture = NULL; if (texture == NULL) - g_error ("Resource path %s s not a valid image: %s", resource_path, error->message); + g_error ("Resource path %s is not a valid image: %s", resource_path, error->message); return texture; }